home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk.zip / REPL.H < prev    next >
C/C++ Source or Header  |  1991-04-07  |  898b  |  38 lines

  1.  
  2. /********************************************
  3. repl.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the Awk programming language as defined in
  8. Aho, Kernighan and Weinberger, The AWK Programming Language,
  9. Addison-Wesley, 1988.
  10.  
  11. See the accompaning file, LIMITATIONS, for restrictions
  12. regarding modification and redistribution of this
  13. program in source or binary form.
  14. ********************************************/
  15.  
  16. /*$Log:    repl.h,v $
  17.  * Revision 2.1  91/04/08  08:23:49  brennan
  18.  * VERSION 0.97
  19.  * 
  20. */
  21.  
  22. /* repl.h */
  23.  
  24. #ifndef  REPL_H
  25. #define  REPL_H
  26.  
  27. PTR  PROTO( re_compile, (STRING *) ) ;
  28. char *PROTO( re_uncompile, (PTR) ) ;
  29.  
  30.  
  31. CELL *PROTO( repl_compile, (STRING *) ) ;
  32. char *PROTO( repl_uncompile, (CELL *) ) ;
  33. void  PROTO( repl_destroy, (CELL *) ) ;
  34. CELL *PROTO( replv_cpy, (CELL *, CELL *) ) ;
  35. CELL *PROTO( replv_to_repl, (CELL *, STRING *) ) ;
  36.  
  37. #endif
  38.